cipher.init(Cipher.DECRYPT_MODE, key);
byte[] decryptedBytes = cipher.doFinal(encryptedBytes);
return decryptedBytes;
}
catch (Exception e) {
throw new EncryptorException(e);
cipher.init(Cipher.DECRYPT_MODE, key);
return cipher.doFinal(encryptedBytes);
}
catch (Exception e) {
throw new EncryptorException(e);